home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8174 / 8174.xpi / chrome / antbar.jar / content / grabber / parsers / parseryoutube.js < prev   
Text File  |  2009-12-30  |  451b  |  25 lines

  1.  
  2. // 
  3. //  downloaderyoutube.js
  4. //  firefox
  5. //  
  6. //  Created by Zak on 2008-06-17.
  7. //  Copyright 2008-2009 Ant.com. All rights reserved.
  8. // 
  9.  
  10. /**
  11. * Just a sample of the downloaders flexibility
  12.  */
  13. var AntParserYoutube = function () {}
  14. AntParserYoutube.prototype = new AntParser;
  15. AntParser.prototype.constructor = AntParser
  16.  
  17. /**
  18.  * Implement the interface getFlvArray method
  19.  */
  20. AntParserYoutube.prototype.getFlvArray = function ()
  21. {
  22.     return null;
  23. }
  24.  
  25.